home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / eselect / libs / manip.bash < prev    next >
Text File  |  2006-04-12  |  1KB  |  35 lines

  1. #!/bin/bash
  2.  
  3. # Copyright (c) 2005 Gentoo Foundation.
  4. # $Id: manip.bash.in 130 2005-06-15 09:06:01Z kugelfang $
  5. # This file is part of the 'eselect' tools framework.
  6. #
  7. # eselect is free software; you can redistribute it and/or modify it under the
  8. # terms of the GNU General Public License as published by the Free Software
  9. # Foundation; either version 2 of the License, or (at your option) any later
  10. # version.
  11. #
  12. # eselect is distributed in the hope that it will be useful, but WITHOUT ANY
  13. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  14. # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License along with
  17. # eselect; if not, write to the Free Software Foundation, Inc., 59 Temple
  18. # Place, Suite 330, Boston, MA  02111-1307  USA
  19.  
  20. # svn_date_to_version PUBLIC
  21. # Turn an svn date string into a nice version number, for those of us who
  22. # are too lazy to manually update VERSION in modules. Safe to use in global
  23. # scope.
  24. svn_date_to_version() {
  25.     local s=${1}
  26.     s=${s#* }
  27.     s=${s%% *}
  28.     s=${s//-}
  29.     echo "${s}"
  30. }
  31.  
  32. # vim: set sw=4 et sts=4 tw=80 :
  33.  
  34.  
  35.